.site-footer-final {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    color: #FFFFFF;
    margin-top: 60px;
    max-width: 1800 px;

}

.footer-top {
    background-color: #212121;
    padding: 60px 0;
}
.footer-bottom {
    background-color: #1C1C1C;
    padding: 20px 0;
    border-top: 1px solid #3A3A3A;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-col-left {
    width: 25%;
}
.footer-col-right {
    width: calc(75% - 40px);
}

.footer-heading {
    color: #C1A35F;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 25px;
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.icon-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}
.icon-list-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.3s;
}
.icon-list-item a:hover, .icon-list-item a:hover span {
    color: #C1A35F;
}
.icon-list-item i {
    color: #43B978;
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.privacy-policy {
    margin-top: 20px;
}
.privacy-policy a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}
.privacy-policy a:hover {
    color: #C1A35F;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-bottom .footer-container {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #a0a0a0;
}
.footer-bottom a {
    color: #FFFFFF;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 991px) {
    .footer-col-left, .footer-col-right {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .footer-heading {
        text-align: center;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 10px;
    }
    .footer-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}